home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / guis / gadutil / examples / bettertest-c / led.asm < prev    next >
Assembly Source File  |  1996-07-16  |  229b  |  18 lines

  1.    xdef  _LightState
  2.    xdef  _ToggleLED
  3.  
  4.    section  code
  5. _LightState:
  6.    tst.w 6(sp)    ; Check state
  7.    beq.s setoff
  8.    bclr  #1,$bfe001
  9.    rts
  10. setoff:
  11.    bset  #1,$bfe001
  12.    rts
  13.  
  14. _ToggleLED:
  15.    bchg  #1,$bfe001
  16.    rts
  17.    end
  18.